home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / sslurp12.zip / sslurp.HLP (.txt) < prev   
OS/2 Help File  |  1997-06-08  |  10KB  |  364 lines

  1.  
  2. ΓòÉΓòÉΓòÉ 1. Sslurp! ΓòÉΓòÉΓòÉ
  3.  
  4.                                    Sslurp! 1.2
  5.  
  6. Sslurp! can retrieve Web pages from a HTTP (WWW) server. It can be configured 
  7. to follow all hyperlinks on the page that lead to other pages on the same 
  8. server. Images on the pages can be retrieved as well. All pages are stored on 
  9. disk and can be viewed later using your web browser. 
  10.  
  11. Sslurp! can make use of a proxy HTTP server, speeding up the whole procedure. 
  12. Sslurp! requires at least one HPFS partition! 
  13.  
  14. Topics: 
  15.  
  16.       The main window 
  17.       Common tasks 
  18.       Command line options 
  19.       For the techies 
  20.       Contacting the author 
  21.  
  22.  
  23. ΓòÉΓòÉΓòÉ 1.1. The main window ΓòÉΓòÉΓòÉ
  24.  
  25. On the main window you find the following elements: 
  26.  
  27.      A drop down list where you enter the URL. The last 15 URLs are saved. 
  28.       You can quickly enter an URL here by dragging an URL object from a WPS 
  29.       folder to this entry field. 
  30.      "Start", "Stop" and "Skip" buttons. 
  31.      A log window. Its contents are also stored in the log file. 
  32.      A status line. Its contents are: 
  33.         -  the current URL 
  34.         -  total number of data bytes retrieved 
  35.         -  total number of data bytes of the current URL 
  36.         -  number of bytes retrieved of the current URL 
  37.         -  number of URLs retrieved 
  38.         -  number of URLs tried 
  39.         -  number of URLs queued for inspection (estimated). 
  40.  
  41.  
  42. ΓòÉΓòÉΓòÉ 1.2. Common tasks ΓòÉΓòÉΓòÉ
  43.  
  44. Here's how to perform some common task with Sslurp!: 
  45.  
  46. I wan't to suck a complete web site. 
  47.  
  48. In the setup, enable "Follow links", "Inline images". Disable "Don't climb up". 
  49. Then enter the root URL of the site (e.g. "http://www.thesite.com/"), then 
  50. press "Start". 
  51.  
  52. I wan't to suck a subrange of a web site. 
  53.  
  54. In the setup, enable "Follow links", "Inline images" and "Don't climb up". Then 
  55. enter the URL of the site (e.g. "http://www.thesite.com/some/path/start.html"), 
  56. then press "Start". 
  57.  
  58. I wan't to suck a single web page with images, but only if it's changed. 
  59.  
  60. In the setup, disable "Follow links". Enable "Inline images" and "Modified 
  61. pages only". Then enter the URL of the page (e.g. 
  62. "http://www.thesite.com/pageofinterest.html"), then press "Start". 
  63.  
  64.  
  65. ΓòÉΓòÉΓòÉ 1.3. Command line options ΓòÉΓòÉΓòÉ
  66.  
  67. Sslurp! can be run in automated mode, i.e. it takes one or more URLs as program 
  68. parameters, downloads these pages according to the program options, and exits 
  69. when finished. 
  70.  
  71. The command line syntax is: 
  72.  
  73. SSLURP.EXE [Options] [<url> | @<listfile>]*
  74.  
  75. In other words, you can specify 
  76.  
  77.      options, 
  78.      one or more URLs, and 
  79.      one or more list files. Each line in a list file is interpreted as URL. 
  80.       Empty lines and lines starting with ';' are ignored. 
  81.  
  82.  The following command line options are supported: 
  83.  
  84.  -T<dir>   Retrieved items are stored in the given directory. 
  85.  
  86.  -L-       No links are followed 
  87.  
  88.  -Ls       Only links to the same server are followed 
  89.  
  90.  -Ld       Only links that are not pointing upward are followed 
  91.  
  92.  -La       All links are followed 
  93.  
  94.  -E["extensions"] Only links with one of the given file extensions are followed 
  95.  
  96.  -X["extensions"] Only links excluding the ones of the given file extensions 
  97.            are followed 
  98.  
  99.  -I+       Inline images are downloaded 
  100.  
  101.  -I-       Inline images are not downloaded 
  102.  
  103.  -Ia       Inline images are downloaded, even those on different servers 
  104.  
  105.  -A+       Applets are downloaded 
  106.  
  107.  -A-       Applets are not downloaded 
  108.  
  109.  -Aa       Applets are downloaded, even those on different servers 
  110.  
  111.  -U+       Only items newer than local copies are downloaded 
  112.  
  113.  -U-       All items are downloaded 
  114.  
  115.  -S<size>  Restricts downloaded items to <size> bytes 
  116.  
  117.  -S-       Downloads are not restricted by size 
  118.  
  119.  -D<number> Restricts followed links to <number> steps 
  120.  
  121.  -D-       Downloads are not restricted by link depth 
  122.  
  123.  -P+       Uses the proxy server 
  124.  
  125.  -P-       Does not use the proxy server 
  126.  
  127.  Note: Command line options override options given in the setup. For options 
  128.  not given in the command line, the setup options are used. So if an option is 
  129.  turned on in the setup, you must explicitly switch it off to deactivate it. 
  130.  It's not sufficient to just leave out the command line option! Stored options 
  131.  are not modified by command line options. 
  132.  
  133.  When finished, Sslurp! returns one of the following ERRORLEVEL values: 
  134.  
  135.  0         Everything OK 
  136.  1         Invalid command line option 
  137.  2         Problem(s) with one of the list files 
  138.  10        Other error 
  139.  
  140.  
  141. ΓòÉΓòÉΓòÉ 1.4. For the techies ΓòÉΓòÉΓòÉ
  142.  
  143. Here's some technical information if you're interested: 
  144.  
  145.      Sslurp! uses HTTP 1.0. HTTP 0.9 is not supported. If some web site is 
  146.       still using a HTTP 0.9 server, its contents may be just as outdated, so 
  147.       you might not miss anything. HTTP 1.1 server replies are recognized. 
  148.  
  149.      Sslurp! only follows HTTP links, not FTP or others. 
  150.  
  151.      Sslurp! counts <IMG SRC=...> and <BODY BACKGROUND=...> as inline images. 
  152.  
  153.      If the file name of a retrieved page isn't specified, it's stored as 
  154.       INDEX.HTML. 
  155.  
  156.      The "Last-Modified" timestamp is stored in the file's EAs. The EA name is 
  157.       HTTP.LMODIFIED and is of type EAT_ASCII. 
  158.  
  159.      Some characters in the URL are converted when building the path name of 
  160.       the file. However, no conversion to FAT (8.3) names is performed! 
  161.  
  162.      If a page is redirected, the redirection is automatically followed, but 
  163.       only if the new location is on the same server! 
  164.  
  165.      Sslurp! has been developed on and tested with OS/2 Warp 4.0. It should 
  166.       also work with the following configurations: 
  167.  
  168.         -  Warp 3.0 with IAK 
  169.         -  Warp 3.0 with TCP/IP 2.0 
  170.         -  Warp 3.0 Connect (TCP/IP 3.0) 
  171.         -  Warp Server 
  172.  
  173.  
  174. ΓòÉΓòÉΓòÉ 1.5. Contacting the author ΓòÉΓòÉΓòÉ
  175.  
  176. Sslurp! was developed by Michael Hohner. He can be reached electronically at: 
  177.  
  178.  EMail:              miho@osn.de 
  179.  Fidonet:            2:2490/2520.17 
  180.  
  181.  
  182. ΓòÉΓòÉΓòÉ 2. File menu ΓòÉΓòÉΓòÉ
  183.  
  184.  Exit 
  185.            Ends the program. 
  186.  
  187.  
  188. ΓòÉΓòÉΓòÉ 3. Setup ΓòÉΓòÉΓòÉ
  189.  
  190.  Options 
  191.            Specify all program options. 
  192.  
  193.  
  194. ΓòÉΓòÉΓòÉ 3.1. Servers ΓòÉΓòÉΓòÉ
  195.  
  196.  Proxy 
  197.            Enter the host name of a proxy HTTP server. You may also specify a 
  198.            port number for the proxy server. Check Enable to finally use the 
  199.            server. Contact your service provider to get this data. 
  200.  
  201.            Note: Only enter the host name, not the URL (e.g. "proxy.isp.com", 
  202.            not "http://proxy.isp.com:123/")! 
  203.  
  204.  User name 
  205.            Enter your user ID here if your proxy server requires 
  206.            authentication. 
  207.  
  208.  Password 
  209.            Password for proxy authentication. 
  210.  
  211.  Email address 
  212.            Enter your EMail address. It is included in every request. Don't 
  213.            enter anything here if you don't want your EMail address to be 
  214.            revealed. 
  215.  
  216.  
  217. ΓòÉΓòÉΓòÉ 3.2. Paths ΓòÉΓòÉΓòÉ
  218.  
  219.  Path for retrieved data 
  220.            Path where retrieved pages and images are stored. This path and 
  221.            subpaths are created automatically. 
  222.  
  223.  
  224. ΓòÉΓòÉΓòÉ 3.3. Logging ΓòÉΓòÉΓòÉ
  225.  
  226. These options control logging. 
  227.  
  228.  Log file 
  229.            Path and name of the log file. 
  230.  
  231.  Additional information 
  232.            Log additional (but somewhat optional) messages 
  233.  
  234.  Server replies 
  235.            Log reply lines by the server 
  236.  
  237.  Debug messages 
  238.            Log messages used for debugging purposes (turn on if requested). 
  239.  
  240.  
  241. ΓòÉΓòÉΓòÉ 3.4. Links ΓòÉΓòÉΓòÉ
  242.  
  243.  none 
  244.            No links are followed 
  245.  
  246.  all 
  247.            All links (even those to other servers) are followed. Be very 
  248.            careful with this option! 
  249.  
  250.  same servers 
  251.            Only links to items on the same server are followed. 
  252.  
  253.  don't climb up 
  254.            Hyperlinks to items that are hierarchically higher than the initial 
  255.            URL are not followed. Otherwise, all links to items on the same 
  256.            server are followed. 
  257.  
  258.            Example: 
  259.  
  260.            If you started with http://some.site/dir1/index.html, and the 
  261.            current page is http://some.site/dir1/more/levels/abc.html, a link 
  262.            that points to http://some.site/otherdir/index.html wouldn't be 
  263.            followed, but a link to http://some.site/dir1/x/index.html would. 
  264.  
  265.  all types 
  266.            All types of links are followed, restricted only by the above 
  267.            settings. 
  268.  
  269.  including 
  270.            You can enter a set of extensions (separated by spaces, commas or 
  271.            semicolons) of items to retrieve. Links to items with other 
  272.            extensions are ignored. 
  273.  
  274.            Example: With "htm html", Sslurp! only follows links to other HTML 
  275.            pages, but does not download other hyperlinked files. 
  276.  
  277.  excluding 
  278.            Reverse of the above option. Only links to items not having one of 
  279.            the given extensions are followed. 
  280.  
  281.  Max link depth 
  282.            Limits the depth of links to follow to the specified number. A level 
  283.            of "1" specifies the initial page. 
  284.  
  285.            Example: 
  286.  
  287.            If page A contains a link to B, and B contains a link to C, A would 
  288.            be level 1, B would be level 2 and C would be level 3. A maximum 
  289.            link depth of "2" would retrieve pages A and B, but not C. 
  290.  
  291.  Max size 
  292.            Limits the size of items to download. If the server announces the 
  293.            size and it's larger than the number specified, the item is skipped. 
  294.            If the server doesn't announce the size, the item is truncated when 
  295.            the maximum size is reached. 
  296.  
  297.  
  298. ΓòÉΓòÉΓòÉ 3.5. Options ΓòÉΓòÉΓòÉ
  299.  
  300. These settings influence which items will be downloaded and how it'll be done. 
  301.  
  302.  Inline images 
  303.            If checked, inline images are also retrieved. 
  304.  
  305.  from other servers 
  306.            If checked, inline images located on other servers are also 
  307.            retrieved. Otherwise only images from the same server are 
  308.            downloaded. 
  309.  
  310.  Java applets 
  311.            If checked, java applets are also retrieved. 
  312.  
  313.  from other servers 
  314.            If checked, applets located on other servers are also retrieved. 
  315.            Otherwise only applets from the same server are downloaded. 
  316.  
  317.  Retrieve modified items only 
  318.            An item is only retrieved if it's newer than the local copy. 
  319.            Strongly recommended! 
  320.  
  321.  
  322. ΓòÉΓòÉΓòÉ 3.6. Server list ΓòÉΓòÉΓòÉ
  323.  
  324. A list of base URLs is displayed. 
  325.  
  326. Press New to add a new URL with settings. 
  327.  
  328. Press Change to change the settings of the selected URL. 
  329.  
  330. Press Delete to delete the selected URL. 
  331.  
  332.  
  333. ΓòÉΓòÉΓòÉ 3.7. Server ΓòÉΓòÉΓòÉ
  334.  
  335.  Base URL 
  336.            Set of URLs (this item and all items hierarchically below) for which 
  337.            these settings apply. This usually specifies a directory on a 
  338.            server. 
  339.  
  340.            Example: 
  341.  
  342.            If you enter "http://some.server/basedir", these settings apply to 
  343.            "http://some.server/basedir/page1.html", but not to 
  344.            "http://some.server/otherdir/b.html". 
  345.  
  346.  User name 
  347.            User name or user ID used for basic authorization. 
  348.  
  349.  Password 
  350.            Password used for basic authorization. 
  351.  
  352.  
  353. ΓòÉΓòÉΓòÉ 4. Help menu ΓòÉΓòÉΓòÉ
  354.  
  355.  General help 
  356.            Provides general help 
  357.  
  358.  Product information 
  359.            Displays name, version number, copyright information etc. 
  360.  
  361.  
  362. ΓòÉΓòÉΓòÉ 5. About ΓòÉΓòÉΓòÉ
  363.  
  364. This page intentionally left blank.